home *** CD-ROM | disk | FTP | other *** search
/ Amiga CD-ROM Collection / Amiga CD-ROM Collection - Auge 4000 and Cactus and Demo Util.iso / auge4000 / 46 / lib / extra / sleep.c < prev    next >
C/C++ Source or Header  |  1990-06-20  |  186b  |  21 lines

  1.  
  2. /*
  3.  *  SLEEP.C
  4.  */
  5.  
  6. #include <libraries/dos.h>
  7. #include <stdio.h>
  8.  
  9. void
  10. sleep(n)
  11. int n;
  12. {
  13.     while (n) {
  14.     Delay(50);
  15.     if (SetSignal(0,0) & SIGBREAKF_CTRL_C)
  16.         break;
  17.     --n;
  18.     }
  19. }
  20.  
  21.